HTMLify
style.css
Views: 12 | Author: huxn-webdev
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | * { box-sizing: border-box; margin: 0; padding: 0; } :root { --main-color: #dc143c; } body { display: flex; justify-content: center; align-items: center; height: 100vh; background: rgb(7, 7, 20); } /* gray-heart */ .gray-heart { background: #ccc; display: flex; justify-content: center; align-items: center; width: 100px; height: 100px; position: relative; top: 0; transform: rotate(-45deg); } .gray-heart:before, .gray-heart:after { content: ""; background: #ccc; border-radius: 50%; height: 100px; width: 100px; position: absolute; } .gray-heart:before { top: -50px; left: 0; } .gray-heart:after { left: 50px; top: 0; } /* red-heart */ .red-heart { background: var(--main-color); display: flex; justify-content: center; align-items: center; height: 100px; width: 100px; transform: rotate(-45deg); position: absolute; visibility: hidden; } .red-heart:before, .red-heart:after { content: ""; background: var(--main-color); border-radius: 50%; width: 100px; height: 100px; position: absolute; } .red-heart:before { top: -50px; left: 0; } .red-heart:after { left: 50px; top: 0; } .red-heart.animation { animation: pop 0.9s linear; visibility: visible; } .red-heart.fill-color { background: var(--main-color); } @keyframes pop { 100% { transform: scale(1.7) rotate(-45deg); opacity: 0; } } |